| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "env": {
- "commonjs": true,
- "node": true,
- "es6": true
- },
- "extends": "eslint:recommended",
- "parser": "babel-eslint",
- "parserOptions": {
- "sourceType": "module",
- "ecmaVersion": 6,
- "ecmaFeatures": {
- "experimentalObjectRestSpread": true,
- "jsx": true
- }
- },
- "globals": {
- "loadData": false,
- "saveData": false,
- "history": false,
- "console": true,
- "setTimeout": false,
- "clearTimeout": false,
- "setInterval": false,
- "clearInterval": false,
- "TextDecoder": true,
- "$utils": true,
- "$shelfList": true
- },
- "plugins": ["hybrid"],
- "rules": {
- "no-console": "off",
- "no-unused-vars": [
- "warn",
- {
- "varsIgnorePattern": "prompt"
- }
- ],
- "quotes": [
- "warn",
- "single",
- {
- "avoidEscape": true,
- "allowTemplateLiterals": true
- }
- ],
- "linebreak-style": ["warn", "unix"]
- }
- }
|