Skip to content

Commit 918f4aa

Browse files
MaanavDprasanthpulsophies927parinitarahikshama-msft
authoredOct 28, 2023
Website revamp final (#17638)
Co-authored-by: MaanavD <maanavdalal@microsoft.com> Co-authored-by: Prasanth Pulavarthi <prasanth.pulavarthi@microsoft.com> Co-authored-by: Sophie Schoenmeyer <sschoenmeyer@microsoft.com> Co-authored-by: sophies927 <107952697+sophies927@users.noreply.github.com> Co-authored-by: Parinita Rahi <101819959+parinitarahi@users.noreply.github.com> Co-authored-by: kshama-msft <66488860+kshama-msft@users.noreply.github.com>
1 parent 9f877ef commit 918f4aa

File tree

166 files changed

+10193
-7555
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+10193
-7555
lines changed
 

‎.eslintignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.DS_Store
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
6+
.env
7+
.env.*
8+
!.env.example
9+
10+
# Ignore files for PNPM, NPM and YARN
11+
pnpm-lock.yaml
12+
package-lock.json
13+
yarn.lock

‎.eslintrc.cjs

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
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+
parserOptions: {
12+
sourceType: 'module',
13+
ecmaVersion: 2020,
14+
extraFileExtensions: ['.svelte']
15+
},
16+
env: {
17+
browser: true,
18+
es2017: true,
19+
node: true
20+
},
21+
overrides: [
22+
{
23+
files: ['*.svelte'],
24+
parser: 'svelte-eslint-parser',
25+
parserOptions: {
26+
parser: '@typescript-eslint/parser'
27+
}
28+
}
29+
]
30+
};

0 commit comments

Comments
 (0)