-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml configuration files and cleanup (#47)
- update eslint to 2.13.0 - convert eslintrc to yaml - convert language grammar and configuration to yaml - their json output is minified - update vsce ignores - simplify many regex patterns - fix number highlighting inside variable names - add highlighting for a few missing keywords - slightly restructure tests - change some scope names to comply with textmate spec
- Loading branch information
Showing
19 changed files
with
588 additions
and
312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
node_modules/ | ||
out/ | ||
*.js |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
root: true | ||
parser: '@typescript-eslint/parser' | ||
parserOptions: | ||
tsconfigRootDir: . | ||
project: [./tsconfig.json] | ||
plugins: | ||
- '@typescript-eslint' | ||
extends: | ||
- eslint:recommended | ||
- plugin:@typescript-eslint/recommended | ||
rules: | ||
no-duplicate-imports: error | ||
no-template-curly-in-string: error | ||
eqeqeq: error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,20 @@ | ||
# raw images | ||
*.xcf | ||
# version control | ||
.gitignore | ||
.github/ | ||
|
||
# config files | ||
.eslintignore | ||
tsconfig.json | ||
|
||
# source files | ||
src/ | ||
**/scripts/ | ||
**/tests/ | ||
**/*.yml | ||
**/*.xcf | ||
|
||
# other | ||
.github/ | ||
.vscode/ | ||
*.code-workspace | ||
src/ | ||
**/tests/ | ||
**/*.map | ||
.gitignore | ||
tsconfig.json | ||
.eslintrc.json | ||
.eslintignore | ||
CONTRIBUTING.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
comments: | ||
lineComment: "'" | ||
|
||
brackets: | ||
- [(, )] | ||
|
||
autoClosingPairs: | ||
- [(, )] | ||
- ['"', '"'] | ||
|
||
surroundingPairs: | ||
- [(, )] | ||
- ['"', '"'] |
Oops, something went wrong.