mirror of
https://github.com/github/codeql-action.git
synced 2026-01-06 14:40:10 +08:00
21 lines
307 B
Plaintext
21 lines
307 B
Plaintext
{
|
|
"root": true,
|
|
|
|
"extends": "airbnb-base",
|
|
|
|
"parser": "@babel/eslint-parser",
|
|
|
|
"rules": {
|
|
"no-use-before-define": ["error", { "functions": false }],
|
|
},
|
|
|
|
"overrides": [
|
|
{
|
|
"files": "src/index.js",
|
|
"rules": {
|
|
"import/no-import-module-exports": 0,
|
|
},
|
|
},
|
|
],
|
|
}
|