8000 πŸ› Remove unwanted files (#4) Β· ARMmbed/mbed-tools-lib@6965e7f Β· GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Jul 27, 2020. It is now read-only.

Commit 6965e7f

Browse files
author
Rosie Miller
authored
πŸ› Remove unwanted files (#4)
* Remove ide files * Add gitignore and codeclimate config files
1 parent 085bc0c commit 6965e7f

File tree

11 files changed

+63
-47
lines changed

11 files changed

+63
-47
lines changed

β€Ž.codeclimate.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
version: "2"
2+
checks:
3+
argument-count:
4+
config:
5+
threshold: 4
6+
complex-logic:
7+
config:
8+
threshold: 4
9+
file-lines:
10+
config:
11+
threshold: 250
12+
method-complexity:
13+
config:
14+
threshold: 5
15+
method-count:
16+
config:
17+
threshold: 20
18+
method-lines:
19+
config:
20+
threshold: 25
21+
nested-control-flow:
22+
config:
23+
threshold: 4
24+
return-statements:
25+
config:
26+
threshold: 4
27+
similar-code:
28+
config:
29+
threshold: # language-specific defaults. an override will affect all languages.
30+
identical-code:
31+
config:
32+
threshold: # language-specific defaults. an override will affect all languages.

β€Ž.gitignore

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Don't lock the versions of this library or installation gridlock will ensue
2+
Pipfile.lock
3+
4+
# PyCharm
5+
.idea/
6+
7+
# macOS
8+
.DS_Store
9+
10+
# Python
11+
*.pyc
12+
__pycache__/
13+
*.egg-info/
14+
15+
# Coverage.py
16+
.coverage
17+
coverage/
18+
junit/
19+
htmlcov/
20+
21+
# Package
22+
build/
23+
dist/
24+
release-dist/
25+
26+
# Temporary file used by CI
27+
dev-requirements.txt
28+
29+
# Local docs output
30+
local_docs/

β€Ž.idea/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

β€Ž.idea/codeStyles/Project.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

β€Ž.idea/codeStyles/codeStyleConfig.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

β€Ž.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.idea/mbed-tools-lib.iml

Lines changed: 0 additions & 8 deletions
This file was deleted.

β€Ž.idea/misc.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

β€Ž.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

β€Ž.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
Β (0)
0