-
Notifications
You must be signed in to change notification settings - Fork 162
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 #598 from sebbo2002/develop
- Loading branch information
Showing
17 changed files
with
3,348 additions
and
4,016 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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import eslint from '@eslint/js'; | ||
import eslintPluginJsonc from 'eslint-plugin-jsonc'; | ||
import globals from 'globals'; | ||
import tseslint from 'typescript-eslint'; | ||
|
||
export default [ | ||
eslint.configs.recommended, | ||
...tseslint.configs.recommended, | ||
...eslintPluginJsonc.configs['flat/recommended-with-jsonc'], | ||
{ | ||
files: [ | ||
'test/**/*.ts' | ||
], | ||
rules: { | ||
'@typescript-eslint/ban-ts-ignore': 'off', | ||
'@typescript-eslint/ban-ts-comment': 'off' | ||
} | ||
}, | ||
{ | ||
rules: { | ||
semi: 'error', | ||
quotes: [ | ||
'error', | ||
'single' | ||
], | ||
indent: [ | ||
'error', | ||
4 | ||
], | ||
'jsonc/sort-keys': 'error' | ||
}, | ||
languageOptions: { | ||
ecmaVersion: 2022, | ||
sourceType: 'module', | ||
globals: { | ||
...globals.node, | ||
...globals.es6, | ||
...globals.mocha | ||
} | ||
} | ||
}, | ||
{ | ||
ignores: [ | ||
'node_modules/**', | ||
'dist/**', | ||
'docs/**', | ||
'package-lock.json', | ||
'.nyc_output/**' | ||
] | ||
} | ||
]; |
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,13 @@ | ||
{ | ||
"exports": "./src/index.ts", | ||
"name": "@sebbo2002/ical-generator", | ||
"publish": { | ||
"include": [ | ||
"LICENSE", | ||
"README.md", | ||
"src/*.ts", | ||
"jsr.json" | ||
] | ||
}, | ||
"version": "7.1.0" | ||
} |
Oops, something went wrong.