-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
24 lines (24 loc) · 661 Bytes
/
.eslintrc.json
File metadata and controls
24 lines (24 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"plugin:cypress/recommended",
"plugin:import/recommended",
"prettier"
],
"plugins": [
"cypress",
"header",
"import",
"prettier"
],
"rules": {
"prettier/prettier": "error",
"header/header": [2, "block", ["", " * Copyright OpenSearch Contributors", " * SPDX-License-Identifier: Apache-2.0", " "]],
// turn off no-unnecessary-waiting for now due to the issue: https://github.com/cypress-io/eslint-plugin-cypress/issues/43
"cypress/no-unnecessary-waiting": "off"
},
"ignorePatterns": ["**/*.d.ts"]
}