Skip to content

Commit e575c77

Browse files
Switch indentation to tabs
1 parent 2edaf75 commit e575c77

27 files changed

+5904
-5903
lines changed

.eslintrc.cjs

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
module.exports = {
2-
root: true,
3-
extends: [
4-
'eslint:recommended',
5-
'plugin:@typescript-eslint/recommended',
6-
'plugin:svelte/recommended',
7-
'prettier',
8-
],
9-
parser: '@typescript-eslint/parser',
10-
plugins: ['@typescript-eslint'],
11-
ignorePatterns: ['*.cjs'],
12-
parserOptions: {
13-
sourceType: 'module',
14-
ecmaVersion: 2020,
15-
extraFileExtensions: ['.svelte'],
16-
},
17-
env: {
18-
browser: true,
19-
es2017: true,
20-
node: true,
21-
},
22-
overrides: [
23-
{
24-
files: ['*.svelte'],
25-
parser: 'svelte-eslint-parser',
26-
parserOptions: {
27-
parser: '@typescript-eslint/parser',
28-
},
29-
},
30-
],
2+
root: true,
3+
extends: [
4+
'eslint:recommended',
5+
'plugin:@typescript-eslint/recommended',
6+
'plugin:svelte/recommended',
7+
'prettier',
8+
],
9+
parser: '@typescript-eslint/parser',
10+
plugins: ['@typescript-eslint'],
11+
ignorePatterns: ['*.cjs'],
12+
parserOptions: {
13+
sourceType: 'module',
14+
ecmaVersion: 2020,
15+
extraFileExtensions: ['.svelte'],
16+
},
17+
env: {
18+
browser: true,
19+
es2017: true,
20+
node: true,
21+
},
22+
overrides: [
23+
{
24+
files: ['*.svelte'],
25+
parser: 'svelte-eslint-parser',
26+
parserOptions: {
27+
parser: '@typescript-eslint/parser',
28+
},
29+
},
30+
],
3131
}

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ npm install date-picker-svelte
2828

2929
```svelte
3030
<script>
31-
import { DateInput } from 'date-picker-svelte'
32-
let date = new Date()
31+
import { DateInput } from 'date-picker-svelte'
32+
let date = new Date()
3333
</script>
3434
3535
<DateInput bind:value={date} />
@@ -57,16 +57,16 @@ Check the [docs](https://date-picker-svelte.kasper.space/docs) to learn more
5757

5858
1. Update `CHANGELOG.md`
5959
2. Check for errors
60-
```
61-
npm run lint
62-
```
60+
```
61+
npm run lint
62+
```
6363
3. Bump the version number
64-
```
65-
npm version --no-git-tag <version>
66-
```
64+
```
65+
npm version --no-git-tag <version>
66+
```
6767
4. Publish
68-
```
69-
npm publish
70-
```
68+
```
69+
npm publish
70+
```
7171
5. Commit with a tag in format "v#.#.#"
7272
6. Create GitHub release with release notes

0 commit comments

Comments
 (0)