Skip to content

Commit 3dc0d43

Browse files
NOPR9D ☄️NOPROD
NOPR9D ☄️
andauthored
🚧 : hello config (#1)
Co-authored-by: NOPR9D <contact@boucham-amine.fr>
1 parent 6bfdd10 commit 3dc0d43

11 files changed

+3467
-0
lines changed

.gitattributes

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Enforce Unix newlines
2+
*.css text eol=lf
3+
*.scss text eol=lf
4+
*.html text eol=lf
5+
*.js text eol=lf
6+
*.ts text eol=lf
7+
*.json text eol=lf
8+
*.less text eol=lf
9+
*.md text eol=lf
10+
*.yml text eol=lf

.gitignore

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
# Only exists if Bazel was run
8+
/bazel-out
9+
10+
# dependencies
11+
/node_modules
12+
13+
# profiling files
14+
chrome-profiler-events*.json
15+
16+
# IDEs and editors
17+
/.idea
18+
.project
19+
.classpath
20+
.c9/
21+
*.launch
22+
.settings/
23+
*.sublime-workspace
24+
25+
# IDE - VSCode
26+
.vscode/*
27+
!.vscode/settings.json
28+
!.vscode/tasks.json
29+
!.vscode/launch.json
30+
!.vscode/extensions.json
31+
.history/*
32+
33+
# misc
34+
/.angular/cache
35+
/.sass-cache
36+
/connect.lock
37+
/coverage
38+
/libpeerconnection.log
39+
npm-debug.log
40+
yarn-error.log
41+
testem.log
42+
/typings
43+
44+
# System Files
45+
.DS_Store
46+
Thumbs.db
47+
48+
49+
.vscode/*

.prettierrc

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"singleQuote": true,
3+
"useTabs": false,
4+
"printWidth": 120,
5+
"tabWidth": 2,
6+
"semi": true,
7+
"htmlWhitespaceSensitivity": "strict",
8+
"arrowParens": "avoid",
9+
"bracketSpacing": true,
10+
"proseWrap": "preserve",
11+
"trailingComma": "none",
12+
"endOfLine": "lf"
13+
}

editorconfig

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Editor configuration, see https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.ts]
12+
quote_type = single
13+
14+
[*.md]
15+
max_line_length = off
16+
trim_trailing_whitespace = false

0 commit comments

Comments
 (0)