Update linter.yml to use eslint config file #2
Workflow file for this run
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
--- | |
############################# | |
############################# | |
## JavaScript Linter rules ## | |
############################# | |
############################# | |
############ | |
# Env Vars # | |
############ | |
env: | |
browser: true | |
es6: true | |
jest: true | |
############### | |
# Global Vars # | |
############### | |
globals: | |
Atomics: readonly | |
SharedArrayBuffer: readonly | |
ignorePatterns: | |
- "!.*" | |
- "**/node_modules/.*" | |
############### | |
# Parser vars # | |
############### | |
parser: '@typescript-eslint/parser' | |
parserOptions: | |
ecmaVersion: 2018 | |
sourceType: module | |
########### | |
# Plugins # | |
########### | |
plugins: | |
- '@typescript-eslint' | |
######### | |
# Rules # | |
######### | |
rules: | |
no-var: "warn" | |
semi: | |
- "error" | |
- "always" | |
############################## | |
# Overrides for JSON parsing # | |
############################## | |
overrides: | |
# JSON files | |
- files: | |
- "*.json" | |
extends: | |
- plugin:jsonc/recommended-with-json | |
parser: jsonc-eslint-parser | |
parserOptions: | |
jsonSyntax: JSON | |
# JSONC files | |
- files: | |
- "*.jsonc" | |
extends: | |
- plugin:jsonc/recommended-with-jsonc | |
parser: jsonc-eslint-parser | |
parserOptions: | |
jsonSyntax: JSONC | |
# JSON5 files | |
- files: | |
- "*.json5" | |
extends: | |
- plugin:jsonc/recommended-with-json5 | |
parser: jsonc-eslint-parser | |
parserOptions: | |
jsonSyntax: JSON5 |