mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 10:33:37 -05:00
Remove unneeded eslint configuration files
This commit is contained in:
parent
b03920b534
commit
9bcd243020
2 changed files with 0 additions and 74 deletions
|
@ -1 +0,0 @@
|
|||
!.automation
|
73
.github/linters/.eslintrc.yml
vendored
73
.github/linters/.eslintrc.yml
vendored
|
@ -1,73 +0,0 @@
|
|||
---
|
||||
#############################
|
||||
#############################
|
||||
## JavaScript Linter rules ##
|
||||
#############################
|
||||
#############################
|
||||
|
||||
############
|
||||
# Env Vars #
|
||||
############
|
||||
env:
|
||||
browser: true
|
||||
es6: true
|
||||
jest: true
|
||||
|
||||
###############
|
||||
# Global Vars #
|
||||
###############
|
||||
globals:
|
||||
Atomics: readonly
|
||||
SharedArrayBuffer: readonly
|
||||
|
||||
###############
|
||||
# Parser vars #
|
||||
###############
|
||||
parser: '@typescript-eslint/parser'
|
||||
parserOptions:
|
||||
ecmaVersion: 2018
|
||||
sourceType: module
|
||||
|
||||
###########
|
||||
# Plugins #
|
||||
###########
|
||||
plugins:
|
||||
- '@typescript-eslint'
|
||||
|
||||
#########
|
||||
# Rules #
|
||||
#########
|
||||
rules: { }
|
||||
|
||||
|
||||
##############################
|
||||
# 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
|
Loading…
Reference in a new issue