Skip to content

Instantly share code, notes, and snippets.

@metruzanca
Created July 24, 2023 04:18
Show Gist options
  • Save metruzanca/c67eecfebda3af24954636fad9ca968a to your computer and use it in GitHub Desktop.
Save metruzanca/c67eecfebda3af24954636fad9ca968a to your computer and use it in GitHub Desktop.
Solidjs eslint
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": ["**/*.js"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"indent": ["error", 2],
"quotes": ["error", "single"],
"semi": ["error","never"],
"@typescript-eslint/no-namespace": ["off"],
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "props" }],
"@typescript-eslint/no-explicit-any": ["warn"],
"@typescript-eslint/ban-types": ["warn"],
"@typescript-eslint/ban-ts-comment": ["warn"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment