File tree Expand file tree Collapse file tree 2 files changed +23
-6
lines changed
Expand file tree Collapse file tree 2 files changed +23
-6
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "arrowParens": "avoid",
3+ "bracketSpacing": false,
4+ "htmlWhitespaceSensitivity": "css",
5+ "insertPragma": false,
6+ "jsxBracketSameLine": false,
7+ "jsxSingleQuote": false,
8+ "printWidth": 80,
9+ "proseWrap": "always",
10+ "quoteProps": "as-needed",
11+ "requirePragma": false,
12+ "semi": false,
13+ "singleQuote": true,
14+ "tabWidth": 2,
15+ "trailingComma": "all",
16+ "useTabs": false
17+ }
Original file line number Diff line number Diff line change 1- const username = " freddy" ;
2- typeof username === " string" ;
1+ const username = ' freddy'
2+ typeof username === ' string'
33
4- if ( ! ( " serviceWorker" in navigator ) ) {
4+ if ( ! ( ' serviceWorker' in navigator ) ) {
55 // you have an old browser :-(
66}
77
8- const greeting = " hello" ;
9- console . log ( `${ greeting } world!` ) ;
10- [ 1 , 2 , 3 ] . forEach ( x => console . log ( x ) ) ;
8+ const greeting = ' hello'
9+ console . log ( `${ greeting } world!` )
10+ ; [ 1 , 2 , 3 ] . forEach ( x => console . log ( x ) )
You can’t perform that action at this time.
0 commit comments