mirror of
https://github.com/FlipsideCrypto/snowflake-promise.git
synced 2026-02-06 11:18:25 +00:00
31 lines
566 B
JSON
31 lines
566 B
JSON
{
|
|
"rules": {
|
|
"no-unused-expression": true,
|
|
// "no-unused-variable": [true, {"ignore-pattern": "^_"}],
|
|
"no-duplicate-variable": true,
|
|
"curly": true,
|
|
"class-name": true,
|
|
"semicolon": [
|
|
"always"
|
|
],
|
|
"triple-equals": true,
|
|
"quotemark": [
|
|
"single"
|
|
],
|
|
"linebreak-style": [
|
|
"LF"
|
|
],
|
|
"eofline": true,
|
|
"no-conditional-assignment": true,
|
|
"use-isnan": true,
|
|
"indent": [
|
|
true,
|
|
"spaces"
|
|
],
|
|
"arrow-return-shorthand": [
|
|
true
|
|
],
|
|
"no-trailing-whitespace": true
|
|
}
|
|
}
|