File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ "env" : {
3
+ "browser" : true ,
4
+ "es6" : true
5
+ } ,
6
+ "extends" : "eslint:recommended" ,
7
+ "globals" : {
8
+ "Atomics" : "readonly" ,
9
+ "SharedArrayBuffer" : "readonly"
10
+ } ,
11
+ "parserOptions" : {
12
+ "ecmaVersion" : 2018 ,
13
+ "sourceType" : "module"
14
+ } ,
15
+ "rules" : {
16
+ }
17
+ } ;
Original file line number Diff line number Diff line change 10
10
"dev" : " node_modules/webpack-cli/bin/cli.js -w --mode=development" ,
11
11
"build" : " node_modules/webpack-cli/bin/cli.js --mode=development; node_modules/webpack-cli/bin/cli.js --mode=production" ,
12
12
"verify" : " node_modules/webpack-cli/bin/cli.js --mode=development --display=errors-only; node_modules/webpack-cli/bin/cli.js --mode=production --display=errors-only; git diff --quiet --exit-code" ,
13
- "clean" : " rm -rf CTFd/themes/core/static/css/* CTFd/themes/core/static/js/* CTFd/themes/admin/static/css/* CTFd/themes/admin/static/js/*"
13
+ "clean" : " rm -rf CTFd/themes/core/static/css/* CTFd/themes/core/static/js/* CTFd/themes/admin/static/css/* CTFd/themes/admin/static/js/*" ,
14
+ "lint" : " node_modules/.bin/eslint CTFd/themes/core/assets/ CTFd/themes/admin/assets/"
14
15
},
15
16
"repository" : {
16
17
"type" : " git" ,
You can’t perform that action at this time.
0 commit comments