mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
27 lines
522 B
JSON
27 lines
522 B
JSON
{
|
|
"extends" : [
|
|
"tslint:recommended"
|
|
],
|
|
"rules": {
|
|
"forin": false,
|
|
"interface-name": [true],
|
|
"no-console": [false],
|
|
"indent": [true, "tabs"],
|
|
"variable-name":
|
|
[
|
|
true,
|
|
"ban-keywords",
|
|
"check-format",
|
|
"allow-pascal-case",
|
|
"allow-leading-underscore"
|
|
],
|
|
"one-line": [false],
|
|
"max-line-length": [false],
|
|
"object-literal-sort-keys": false,
|
|
"curly": false,
|
|
"ordered-imports": [],
|
|
"only-arrow-functions": [],
|
|
"class-name": true
|
|
}
|
|
}
|