UNPKG

eslint-plugin-no-cyrillic-string

Version:
37 lines (36 loc) 945 B
{ "extends": "eslint:recommended", "rules": { "comma-dangle": ["error", "never"], "indent": ["error", 4, { "SwitchCase": 1 }], "no-case-declarations": "off", "no-console": "off", "no-extra-boolean-cast": "off", "no-var": "error", "object-shorthand": ["error", "always"], "one-var": ["error", "never"], "quotes": ["error", "double"], "semi": ["error", "always"], "space-infix-ops": ["error"], "no-lonely-if": ["error"], "curly": [2, "multi-line"], "no-cyrillic-string/no-cyrillic-string": "error" }, "parserOptions": { "ecmaVersion": 8, "sourceType": "module", "ecmaFeatures": { "jsx": true } }, "env": { "node": true }, "globals": { "Promise": true }, "plugins": [ "eslint-plugin-no-cyrillic-string", "react" ] }