1234567891011121314151617181920 |
- {
- "env": {
- "commonjs": true,
- "es6": true,
- "node": true,
- "browser": true
- },
- "extends": "eslint:recommended",
- "globals": {
- "Atomics": "readonly",
- "SharedArrayBuffer": "readonly"
- },
- "parserOptions": {
- "ecmaVersion": 2018
- },
- "rules": {
- "no-console": "off",
- "no-async-promise-executor": "off"
- }
- }
|