-
Notifications
You must be signed in to change notification settings - Fork 0
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 #27 from justinphilpott/feature/import-src
release 0.1.0
- Loading branch information
Showing
24 changed files
with
2,425 additions
and
2,523 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
node_modules | ||
dist | ||
dist | ||
coverage |
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 |
---|---|---|
@@ -1,26 +1,14 @@ | ||
// eslint.config.js | ||
import eslintPluginPrettier from 'eslint-plugin-prettier'; | ||
import eslintConfigPrettier from 'eslint-config-prettier'; | ||
|
||
export default [ | ||
{ | ||
files: ['**/*.js', '**/*.ts', '**/*.tsx'], | ||
files: ["**/*.ts", "**/*.tsx"], // Apply these settings to TypeScript files | ||
languageOptions: { | ||
ecmaVersion: 2021, | ||
sourceType: 'module', | ||
globals: { | ||
browser: true, | ||
es6: true, | ||
node: true, | ||
}, | ||
parser: "@typescript-eslint/parser", | ||
}, | ||
plugins: { | ||
prettier: eslintPluginPrettier, | ||
"@typescript-eslint": require("@typescript-eslint/eslint-plugin"), | ||
}, | ||
rules: { | ||
...eslintConfigPrettier.rules, // integrates Prettier rules | ||
// Add any custom rules here, e.g.: | ||
// "semi": ["error", "always"] | ||
}, | ||
}, | ||
]; | ||
...require("@typescript-eslint/eslint-plugin").configs.recommended.rules, | ||
} | ||
} | ||
]; |
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
Oops, something went wrong.