.eslintrc in Visualizer – Tables & Charts Manager with Built-in AI Generator 3.11.5, at classes/Visualizer/Gutenberg/.eslintrc
| 1 | { |
| 2 | "env": { |
| 3 | "browser": true, |
| 4 | "es6": true |
| 5 | }, |
| 6 | "extends": "wordpress", |
| 7 | "parserOptions": { |
| 8 | "ecmaFeatures": { |
| 9 | "jsx": true |
| 10 | }, |
| 11 | "ecmaVersion": 2018, |
| 12 | "sourceType": "module" |
| 13 | }, |
| 14 | "plugins": [ |
| 15 | "react" |
| 16 | ], |
| 17 | "rules": { |
| 18 | "indent": [ |
| 19 | "off", |
| 20 | "tab" |
| 21 | ], |
| 22 | "linebreak-style": [ |
| 23 | "off", |
| 24 | "unix" |
| 25 | ], |
| 26 | "quotes": [ |
| 27 | "error", |
| 28 | "single" |
| 29 | ], |
| 30 | "semi": [ |
| 31 | "error", |
| 32 | "always" |
| 33 | ], |
| 34 | "no-cond-assign": "off" |
| 35 | } |
| 36 | } |