8 lines
110 B
Bash
Executable File
8 lines
110 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Setup..."
|
|
_src="src";
|
|
|
|
echo "Analyzing..."
|
|
find "$_src" -name "*.js" -exec gjslint "{}" \;
|