-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from davidenke/feature/use-proxy
This is a refactoring of how the polyfill is applied. This should now produce results closer to the native implementations. The filter results can now be seen side by side, which reveals some differences for e.g. `drop-shadow` and `saturation`.
- Loading branch information
Showing
62 changed files
with
6,617 additions
and
15,962 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
18.13.0 | ||
20.16.0 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
{ | ||
"singleQuote": true, | ||
"jsxSingleQuote": false, | ||
"trailingComma": "all", | ||
"endOfLine": "auto", | ||
"arrowParens": "avoid", | ||
"tabWidth": 2, | ||
"printWidth": 100 | ||
"tabWidth": 2 | ||
} |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// @ts-check | ||
|
||
import eslintJs from '@eslint/js'; | ||
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'; | ||
import eslintSimpleImportSort from 'eslint-plugin-simple-import-sort'; | ||
import eslintPluginUnusedImports from 'eslint-plugin-unused-imports'; | ||
import eslintTs from 'typescript-eslint'; | ||
|
||
export default eslintTs.config( | ||
eslintJs.configs.recommended, | ||
...eslintTs.configs.recommended, | ||
eslintPluginPrettierRecommended, | ||
{ | ||
ignores: [ | ||
'**/node_modules/', | ||
'**/generated/', | ||
'**/dist/', | ||
'**/coverage/', | ||
'**/reports/', | ||
], | ||
}, | ||
{ | ||
plugins: { | ||
'simple-import-sort': eslintSimpleImportSort, | ||
'unused-imports': eslintPluginUnusedImports, | ||
}, | ||
rules: { | ||
'linebreak-style': ['error', 'unix'], | ||
quotes: ['error', 'single'], | ||
semi: ['error', 'always'], | ||
'simple-import-sort/imports': 'error', | ||
'simple-import-sort/exports': 'error', | ||
'prettier/prettier': ['error'], | ||
'unused-imports/no-unused-imports': 'error', | ||
}, | ||
}, | ||
); |
Oops, something went wrong.