Skip to content

Commit

Permalink
Update outdated metadata and add missing comment headings
Browse files Browse the repository at this point in the history
This includes copyright headers with outdated addresses and formats,
unused configuration properties and up-to-date best config practices.

GH-112
  • Loading branch information
arcticicestudio committed Mar 16, 2019
1 parent 2becfbf commit 347873b
Show file tree
Hide file tree
Showing 7 changed files with 61 additions and 42 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright (c) 2016-present Arctic Ice Studio <[email protected]>
# Copyright (c) 2016-present Sven Greb <code@svengreb.de>
# Copyright (C) 2016-present Arctic Ice Studio <[email protected]>
# Copyright (C) 2016-present Sven Greb <development@svengreb.de>

# Project: Nord
# Repository: https://github.com/arcticicestudio/nord
Expand Down
31 changes: 19 additions & 12 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (C) 2016-present Arctic Ice Studio <[email protected]>
# Copyright (C) 2016-present Sven Greb <[email protected]>
#
# Project: Nord
# Repository: https://github.com/arcticicestudio/nord
# License: MIT

# +--------------------+
# + Base Configuration +
# +--------------------+
Expand All @@ -7,24 +14,24 @@ end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 160
max_line_length = 120
trim_trailing_whitespace = true

# +-----------+
# + Languages +
# +-----------+
# +--- Markdown ---+
[*.{md,gfm}]
trim_trailing_whitespace = false

# +-----------------------+
# + Native Color Palettes +
# +-----------------------+
[/src/native/*.{aco,ase,clr,gpa,gpl,mtl}]
# +----------------+
# + Color Swatches +
# +----------------+
[/src/swatches/*.{aco,ase,clr,gpa,gpl,mtl}]
charset = none
end_of_line = none
indent_size = none
indent_style = none
insert_final_newline = false
max_line_length = none
trim_trailing_whitespace = false

# +-----------+
# + Languages +
# +-----------+
# +--- Markdown ---+
[*.{md}]
trim_trailing_whitespace = false
10 changes: 10 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Copyright (C) 2016-present Arctic Ice Studio <[email protected]>
# Copyright (C) 2016-present Sven Greb <[email protected]>
#
# Project: Nord
# Repository: https://github.com/arcticicestudio/nord
# License: MIT
# References:
# https://git-scm.com/docs/gitattributes
# https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes#Keyword-Expansion

# Automatically perform line feed (LF) normalization for files detected as text and leave all files detected as binary
# untouched.
* text=auto
Expand Down
35 changes: 15 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,24 +1,19 @@
# Copyright (C) 2016-present Arctic Ice Studio <[email protected]>
# Copyright (C) 2016-present Sven Greb <[email protected]>
#
# Project: Nord
# Repository: https://github.com/arcticicestudio/nord
# License: MIT

# +------+
# + Logs +
# +------+
logs/
**/*.log
npm-debug.log*

# +---------+
# + Node.js +
# +---------+
node_modules
npm-debug.log*
**/node_modules/
.npm/
*.log
# Runtime data
pids
*.pid
*.seed
*.pid.lock

# +-------------------+
# + Project Structure +
# +-------------------+
build/
dist/

# +------+
# + Sass +
# +------+
.sass-cache
*.css.map
9 changes: 8 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
package-lock=false
; Copyright (C) 2016-present Arctic Ice Studio <[email protected]>
; Copyright (C) 2016-present Sven Greb <[email protected]>
;
; Project: Nord
; Repository: https://github.com/arcticicestudio/nord
; License: MIT

package-lock=true
save-exact=true
10 changes: 5 additions & 5 deletions .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2016-present Arctic Ice Studio <[email protected]>
* Copyright (c) 2016-present Sven Greb <code@svengreb.de>
* Copyright (C) 2016-present Arctic Ice Studio <[email protected]>
* Copyright (C) 2016-present Sven Greb <development@svengreb.de>
*
* Project: Nord
* Repository: https://github.com/arcticicestudio/nord
Expand All @@ -12,10 +12,10 @@
*/

module.exports = {
"extends": "stylelint-config-standard",
"rules": {
extends: "stylelint-config-standard",
rules: {
"color-hex-case": "lower",
"comment-empty-line-before": null,
"selector-pseudo-element-colon-notation": "single"
}
}
};
4 changes: 2 additions & 2 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
MIT License (MIT)

Copyright (c) 2016-present Arctic Ice Studio <[email protected]> (http://arcticicestudio.com)
Copyright (c) 2016-present Sven Greb <code@svengreb.de> (http://svengreb.de)
Copyright (c) 2016-present Arctic Ice Studio <[email protected]> (https://www.arcticicestudio.com)
Copyright (c) 2016-present Sven Greb <development@svengreb.de> (https://www.svengreb.de)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down

0 comments on commit 347873b

Please sign in to comment.