mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-21 21:50:59 -05:00
adding it
This commit is contained in:
parent
769b7703be
commit
9321959896
2 changed files with 40 additions and 6 deletions
40
.github/linters/.eslintrc.yml
vendored
Normal file
40
.github/linters/.eslintrc.yml
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
---
|
||||
|
||||
#############################
|
||||
#############################
|
||||
## JavaScript Linter rules ##
|
||||
#############################
|
||||
#############################
|
||||
|
||||
############
|
||||
# Env Vars #
|
||||
############
|
||||
env:
|
||||
browser: true
|
||||
es6: 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: {}
|
|
@ -13,12 +13,6 @@ env:
|
|||
browser: true
|
||||
es6: true
|
||||
|
||||
################
|
||||
# Extends vars #
|
||||
################
|
||||
extends:
|
||||
- standard
|
||||
|
||||
###############
|
||||
# Global Vars #
|
||||
###############
|
||||
|
|
Loading…
Reference in a new issue