Files

18 lines
325 B
JSON
Raw Permalink Normal View History

2021-12-13 23:03:09 -05:00
{
"env": {
"commonjs": true,
2022-09-16 22:59:17 -05:00
"es2021": true,
"node": true,
"jest": true
2021-12-13 23:03:09 -05:00
},
2022-09-16 22:59:17 -05:00
"plugins": ["github"],
"extends": ["eslint:recommended", "prettier", "plugin:github/internal"],
2021-12-13 23:03:09 -05:00
"parserOptions": {
2022-09-16 22:59:17 -05:00
"ecmaVersion": 12
2021-12-13 23:03:09 -05:00
},
"rules": {
"semi": ["error", "never"]
2022-09-16 22:59:17 -05:00
},
"ignorePatterns": ["/dist/"]
2022-09-16 22:59:17 -05:00
}