Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
Rearrange remaining options
Browse files Browse the repository at this point in the history
  • Loading branch information
IanVS committed Jan 28, 2018
1 parent 27631af commit 3f12099
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@
"atom": ">=1.13.0 <2.0.0"
},
"configSchema": {
"fixOnSave": {
"title": "Fix errors on save",
"description": "Have eslint attempt to fix some errors automatically when saving the file.",
"type": "boolean",
"default": false,
"order": 1
},
"lintHtmlFiles": {
"title": "Lint HTML Files",
"description": "You should also add `eslint-plugin-html` to your .eslintrc plugins",
"type": "boolean",
"default": false,
"order": 2
},
"scopes": {
"title": "List of scopes to run ESLint on, run `Editor: Log Cursor Scope` to determine the scopes for a file.",
"type": "array",
Expand All @@ -22,14 +36,7 @@
"items": {
"type": "string"
},
"order": 1
},
"lintHtmlFiles": {
"title": "Lint HTML Files",
"description": "You should also add `eslint-plugin-html` to your .eslintrc plugins",
"type": "boolean",
"default": false,
"order": 2
"order": 3
},
"eslintRulesDirs": {
"title": "ESLint Rules Directories",
Expand All @@ -39,18 +46,11 @@
"items": {
"type": "string"
},
"order": 7
},
"fixOnSave": {
"title": "Fix errors on save",
"description": "Have eslint attempt to fix some errors automatically when saving the file.",
"type": "boolean",
"default": false,
"order": 11
"order": 4
},
"global": {
"type": "object",
"order": 3,
"order": 5,
"title": "Global ESLint",
"properties": {
"useGlobalEslint": {
Expand All @@ -71,7 +71,7 @@
},
"disabling": {
"type": "object",
"order": 4,
"order": 6,
"properties": {
"disableWhenNoEslintConfig": {
"title": "Disable when no ESLint config is found (in package.json or .eslintrc)",
Expand Down Expand Up @@ -110,7 +110,7 @@
},
"advanced": {
"type": "object",
"order": 5,
"order": 7,
"properties": {
"disableEslintIgnore": {
"title": "Don't use .eslintignore files",
Expand Down

0 comments on commit 3f12099

Please sign in to comment.