mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-09 12:37:46 +00:00
20 lines
369 B
Plaintext
20 lines
369 B
Plaintext
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint", "prettier", "jest"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier"
|
|
],
|
|
"rules": {
|
|
"no-console": 1,
|
|
"prettier/prettier": 2
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"node": true,
|
|
"jest/globals": true
|
|
}
|
|
}
|