32 lines
714 B
JSON
32 lines
714 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"jquery": true,
|
|
"es6": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"globals": {
|
|
"wp": "readonly",
|
|
"wpstData": "readonly",
|
|
"wpstModalData": "readonly",
|
|
"Cypress": "readonly",
|
|
"cy": "readonly",
|
|
"describe": "readonly",
|
|
"it": "readonly",
|
|
"before": "readonly",
|
|
"beforeEach": "readonly",
|
|
"module": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"indent": ["error", 2],
|
|
"linebreak-style": ["error", "unix"],
|
|
"quotes": ["error", "single"],
|
|
"semi": ["error", "always"]
|
|
},
|
|
"ignorePatterns": ["vendor/**", "node_modules/**", "build/**", "dist/**", "bin/**"]
|
|
}
|