Mercurial > pub > ImplabJs
comparison .eslintrc.json @ 0:fc2517695ee1
Initial commit, draft import of existing work
| author | cin |
|---|---|
| date | Thu, 01 Jun 2017 13:20:03 +0300 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:fc2517695ee1 |
|---|---|
| 1 { | |
| 2 "env": { | |
| 3 "browser": true, | |
| 4 "commonjs": true, | |
| 5 "amd": true, | |
| 6 "node": true | |
| 7 }, | |
| 8 "parserOptions": { | |
| 9 "ecmaFeatures": { | |
| 10 "jsx": true | |
| 11 }, | |
| 12 "sourceType": "module" | |
| 13 }, | |
| 14 "extends": "eslint:recommended", | |
| 15 "rules": { | |
| 16 "no-const-assign": "warn", | |
| 17 "no-this-before-super": "warn", | |
| 18 "no-undef": "error", | |
| 19 "no-unreachable": "warn", | |
| 20 "no-unused-vars": "warn", | |
| 21 "constructor-super": "warn", | |
| 22 "valid-typeof": "warn", | |
| 23 "semi" : "warn", | |
| 24 "no-invalid-this" : "error", | |
| 25 "no-console": "off" | |
| 26 } | |
| 27 } |
