This file contains hidden or 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
    
  
  
    
  | { | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true | |
| }, | |
| "eslint.alwaysShowStatus": true | |
| } | 
  
    
      This file contains hidden or 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
    
  
  
    
  | diff --git a/package.json b/package.json | |
| index 2285a23..766810e 100644 | |
| --- a/package.json | |
| +++ b/package.json | |
| @@ -8,7 +8,8 @@ | |
| "start": "", | |
| "dev": "", | |
| "test": "exit 0", | |
| - "lint-staged": "exit 0" | |
| + "lint-staged": "lint-staged", | 
  
    
      This file contains hidden or 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
    
  
  
    
  | { | |
| "**/*.+(js|ts)": [ | |
| "eslint" | |
| ] | |
| } | 
  
    
      This file contains hidden or 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
    
  
  
    
  | # don't ever lint node_modules | |
| node_modules | |
| # don't lint build output | |
| build | 
  
    
      This file contains hidden or 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
    
  
  
    
  | module.exports = { | |
| root: true, | |
| parser: '@typescript-eslint/parser', | |
| parserOptions: { | |
| project: './tsconfig.json' | |
| }, | |
| plugins: ['@typescript-eslint'], | |
| extends: ['standard-with-typescript'], | |
| rules: { | |
| '@typescript-eslint/strict-boolean-expressions': ['off'], | 
  
    
      This file contains hidden or 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
    
  
  
    
  | diff --git a/package.json b/package.json | |
| index 55be359..4676d37 100644 | |
| --- a/package.json | |
| +++ b/package.json | |
| @@ -7,7 +7,8 @@ | |
| "tsc": "tsc", | |
| "start": "", | |
| "dev": "", | |
| - "test": "" | |
| + "test": "exit 0", | 
  
    
      This file contains hidden or 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
    
  
  
    
  | { | |
| "hooks": { | |
| "pre-commit": "npm run lint-staged", | |
| "pre-push": "npm t" | |
| } | |
| } | 
  
    
      This file contains hidden or 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
    
  
  
    
  | root = true | |
| [*] | |
| charset = utf-8 | |
| indent_style = space | |
| indent_size = 2 | |
| end_of_line = lf | |
| trim_trailing_whitespace = true | |
| insert_final_newline = true | 
  
    
      This file contains hidden or 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
    
  
  
    
  | # Ignore everything in this directory | |
| * | |
| # Except this file | |
| !.gitignore | 
  
    
      This file contains hidden or 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
    
  
  
    
  | diff --git a/tsconfig.json b/tsconfig.json | |
| index 3eb89be..b8b8e5b 100644 | |
| --- a/tsconfig.json | |
| +++ b/tsconfig.json | |
| @@ -2,7 +2,7 @@ | |
| "compilerOptions": { | |
| /* Basic Options */ | |
| // "incremental": true, /* Enable incremental compilation */ | |
| - "target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ | |
| + "target": "ES2019", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ | 
NewerOlder