Skip to content
This repository was archived by the owner on Jun 26, 2021. It is now read-only.

Commit

Permalink
Second approach
Browse files Browse the repository at this point in the history
  • Loading branch information
typeofweb committed Apr 10, 2020
1 parent ec3b983 commit da91973
Show file tree
Hide file tree
Showing 10 changed files with 2,291 additions and 12,547 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
30 changes: 30 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint/eslint-plugin', 'eslint-plugin-expect-type'],
extends: [
'prettier/@typescript-eslint',
'typestrict',
'plugin:eslint-plugin-expect-type/recommended',
],
parserOptions: {
ecmaVersion: 2020,
project: './tsconfig.json',
sourceType: 'module',
ecmaFeatures: {
impliedStrict: true,
},
},
env: {
es6: true,
node: true,
},
overrides: [
{
files: ['src/__tests__/**'],
env: {
jest: true,
},
},
],
};
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10
12
Loading

0 comments on commit da91973

Please sign in to comment.