Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: improve eslint rules and configuration #689

Merged
merged 26 commits into from
Jun 8, 2020
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
7f70abe
chore: improve eslint rules and configuration
nickofthyme May 29, 2020
1624541
chore: upgrade eslint
nickofthyme May 29, 2020
21ef4de
fix: cleanup/add/remove rules based on lint fixes
nickofthyme May 30, 2020
8300f99
chore: fix all linting errors - first pass
nickofthyme May 30, 2020
e40af77
fix: default switch cases
nickofthyme Jun 1, 2020
e81ffa4
fix: fast deep equal changes
nickofthyme Jun 1, 2020
06d625c
fix: update eslint config with pr comment changes
nickofthyme Jun 2, 2020
15a6a75
fix: review and fix all typescipt lint changes
nickofthyme Jun 2, 2020
53c0725
fix: ts ignore import error
nickofthyme Jun 2, 2020
c655dc9
fix: prefer spread rule and code
nickofthyme Jun 2, 2020
a5786d0
fix: prefer append rule and code
nickofthyme Jun 2, 2020
2f228d6
chore: replace prettier ts check with eslint rules
nickofthyme Jun 2, 2020
e0d221f
fix: fix all issues with new plettier replacement rules
nickofthyme Jun 2, 2020
dbc18d8
fix: type errors
nickofthyme Jun 2, 2020
89275be
fix: update rules per pr discussion
nickofthyme Jun 4, 2020
55df0db
fix: import order grouping to be less strict, update all files
nickofthyme Jun 4, 2020
3fe7423
Merge branch 'master' into update-lint-config
nickofthyme Jun 4, 2020
d80ee3e
Merge branch 'master' into update-lint-config
nickofthyme Jun 5, 2020
30c0b9c
test: fix broken tests from undefined and a11y rules
nickofthyme Jun 5, 2020
a1940d6
fix: api changes from linting
nickofthyme Jun 5, 2020
21b4158
fix: ie11 rendering issue with .remove
nickofthyme Jun 8, 2020
e5b053a
Merge branch 'master' into update-lint-config
nickofthyme Jun 8, 2020
e3ba904
fix: indent second and thrid ternary blocks
nickofthyme Jun 8, 2020
8afd06a
Merge branch 'master' into update-lint-config
nickofthyme Jun 8, 2020
ddae736
fix: order groups alphabetically
nickofthyme Jun 8, 2020
2bd7874
docs: update api changes
nickofthyme Jun 8, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
19 changes: 12 additions & 7 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
# Force include
!/.storybook
!/.storybook-docs
!/.playground
!.storybook
!.storybook-docs
!.playground
!.*.js

# Ignore
/wiki
/node_modules
/coverage
wiki
node_modules
coverage
license_header.js

# Editor configs
/.vscode
.vscode

# Hidden directories
.git

# Compiled source
src/utils/d3-delaunay/*
Expand Down
Loading