Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V0.2.0 #1

Merged
merged 9 commits into from
Apr 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,17 @@ module.exports = {
'quotes': [ 'error', 'single' ],
'semi': [ 'error', 'always'],

'no-restricted-imports': [
'error',
{
paths: [
{
name: 'lodash',
message: 'Please do not import lodash as a whole: import individual lodash functions instead.'
}
]
}
],

'no-unsanitized/property': [ 'error', { escape: { methods: ['escapeHTML'] } } ],
'no-unsanitized/method': [ 'error' ],
Expand Down
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
11.9.0
11.0.0
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

## v0.2.0 (xxx)

#### New features:

- Removed editor
- Renamed to ChordMark

---

## v0.1.0 (26/03/2019)

#### New features:

- Imported libraries files from demo app
- Initialized fitness functions

---
38 changes: 19 additions & 19 deletions SLOC
Original file line number Diff line number Diff line change
Expand Up @@ -2,53 +2,53 @@ Source code:

---------- Result ------------

Physical : 1035
Source : 675
Comment : 190
Physical : 891
Source : 578
Comment : 171
Single-line comment : 15
Block comment : 175
Block comment : 156
Mixed : 15
Empty block comment : 0
Empty : 185
Empty : 157
To Do : 0

Number of files read : 48
Number of files read : 41

----------------------------

Tests:

---------- Result ------------

Physical : 2131
Source : 1781
Comment : 3
Single-line comment : 3
Physical : 1910
Source : 1602
Comment : 4
Single-line comment : 4
Block comment : 0
Mixed : 3
Empty block comment : 0
Empty : 350
Empty : 307
To Do : 0

Number of files read : 32
Number of files read : 27

----------------------------

Total:

---------- Result ------------

Physical : 3166
Source : 2456
Comment : 193
Single-line comment : 18
Block comment : 175
Physical : 2801
Source : 2180
Comment : 175
Single-line comment : 19
Block comment : 156
Mixed : 18
Empty block comment : 0
Empty : 535
Empty : 464
To Do : 0

Number of files read : 80
Number of files read : 68

----------------------------

2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const presets = [
browsers: 'defaults',
},
useBuiltIns: 'usage',
corejs: '3.0',
corejs: '3',
},
],
];
Expand Down
3 changes: 0 additions & 3 deletions dist/ucc-editor.css

This file was deleted.

12 changes: 0 additions & 12 deletions dist/ucc-editor.css.map

This file was deleted.

17 changes: 0 additions & 17 deletions dist/ucc-editor.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/ucc-editor.js.map

This file was deleted.

3 changes: 0 additions & 3 deletions dist/ucc.css

This file was deleted.

10 changes: 0 additions & 10 deletions dist/ucc.css.map

This file was deleted.

17 changes: 0 additions & 17 deletions dist/ucc.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/ucc.js.map

This file was deleted.

Loading