influxdb/ui/tslint.json

48 lines
888 B
JSON
Raw Normal View History

2018-03-21 21:01:47 +00:00
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-react",
"tslint-plugin-prettier",
"tslint-config-prettier"
],
2018-11-19 22:22:57 +00:00
"linterOptions": {
"exclude": ["src/api/**/*"]
2018-11-19 22:22:57 +00:00
},
2018-03-21 21:01:47 +00:00
"rules": {
2018-03-22 20:51:28 +00:00
"object-literal-sort-keys": false,
2018-03-22 21:47:57 +00:00
"ordered-imports": false,
feat(org-view): Chronograf OrgView (#1101) * Move organization type definition to own file Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Add organizations link in side nav Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Add organization routes Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Add Organization index and view Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Introduce OrgView * Fix type errors * WIP rudimentary view of Org resources * Add spinner wrapper component Will make this more awesome later Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Render all org resources in list views with empty states Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Upgrade prettier and tslint configs * Add back spinners * Add createOrg API * Introduce CreateOrgOverlay * Move org actions and reducer to org dir * Add autocomplete option to clockface Input * Implements CreateOrg from OrgIndex * Introduce delete org from OrgIndex * Remove CHANGELOG * Start OrgOptions * Add Profile Page Header subcomponent * Make index list items lighter when nested * Add filter and create UI to buckets list * Slightly modify appearance of overlays * Implement update org options tab * Introduce createBucket in org view Waiting on https://github.com/influxdata/platform/issues/1118 for the API to accept milliseconds as retentionPolicies * WIP introduce Filter component * Fix linter warnings * Introduce filter dashboards * Implement filter and task list * Add spinner to member list in org view * Use new index list
2018-10-23 15:53:15 +00:00
"interface-name": [
true,
"never-prefix"
],
"no-console": [
true,
"log",
"warn"
],
2018-03-21 22:24:59 +00:00
"no-empty": false,
"jsx-no-lambda": false,
"max-classes-per-file": false,
"no-empty-interface": false,
"no-shadowed-variable": false,
2018-04-20 23:20:13 +00:00
"prefer-for-of": false,
2018-03-21 21:01:47 +00:00
"prettier": [
true,
{
"singleQuote": true,
"semi": false,
"trailingComma": "es5",
"bracketSpacing": false
}
]
},
2018-04-13 21:58:47 +00:00
"rulesDirectory": [],
feat(org-view): Chronograf OrgView (#1101) * Move organization type definition to own file Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Add organizations link in side nav Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Add organization routes Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Add Organization index and view Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Introduce OrgView * Fix type errors * WIP rudimentary view of Org resources * Add spinner wrapper component Will make this more awesome later Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Render all org resources in list views with empty states Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Upgrade prettier and tslint configs * Add back spinners * Add createOrg API * Introduce CreateOrgOverlay * Move org actions and reducer to org dir * Add autocomplete option to clockface Input * Implements CreateOrg from OrgIndex * Introduce delete org from OrgIndex * Remove CHANGELOG * Start OrgOptions * Add Profile Page Header subcomponent * Make index list items lighter when nested * Add filter and create UI to buckets list * Slightly modify appearance of overlays * Implement update org options tab * Introduce createBucket in org view Waiting on https://github.com/influxdata/platform/issues/1118 for the API to accept milliseconds as retentionPolicies * WIP introduce Filter component * Fix linter warnings * Introduce filter dashboards * Implement filter and task list * Add spinner to member list in org view * Use new index list
2018-10-23 15:53:15 +00:00
"no-unused-variable": [
true,
{
"ignore-pattern": "^_"
}
]
}