Skip to content

Instantly share code, notes, and snippets.

@uutarou10
Created August 31, 2018 06:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uutarou10/b10fd721b284e14312cbcfb0a0062873 to your computer and use it in GitHub Desktop.
Save uutarou10/b10fd721b284e14312cbcfb0a0062873 to your computer and use it in GitHub Desktop.
ぼくのかんがえたさいきょうのtslint.json(ただの好み)
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"linterOptions": {
"exclude": [
"config/**/*.js",
"node_modules/**/*.ts"
]
},
"rules": {
"variable-name": [true, "allow-leading-underscore"],
"interface-name": [true, "never-prefix"]
},
"jsRules": {
"object-literal-sort-keys": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment