Skip to content

Commit

Permalink
Normalize all the line endings
Browse files Browse the repository at this point in the history
  • Loading branch information
daonham committed Nov 27, 2020
1 parent 0c16245 commit 4cb278c
Show file tree
Hide file tree
Showing 781 changed files with 255,472 additions and 255,472 deletions.
50 changes: 25 additions & 25 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org

# WordPress Coding Standards
# http://make.wordpress.org/core/handbook/coding-standards/

root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = tab
indent_size = 4

[{*.yml}]
indent_style = space
indent_size = 2

[*.txt]
end_of_line = crlf

[*.md]
trim_trailing_whitespace = false
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org

# WordPress Coding Standards
# http://make.wordpress.org/core/handbook/coding-standards/

root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = tab
indent_size = 4

[{*.yml}]
indent_style = space
indent_size = 2

[*.txt]
end_of_line = crlf

[*.md]
trim_trailing_whitespace = false
12 changes: 6 additions & 6 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**/*.min.js
**/node_modules/**
**/vendor/**
dist
node_modules
vendor
**/*.min.js
**/node_modules/**
**/vendor/**
dist
node_modules
vendor
48 changes: 24 additions & 24 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"extends": ["plugin:@wordpress/eslint-plugin/recommended-with-formatting"],
"env": {
"browser": true,
"es6": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": ["error", "tab"],
"space-in-parens": ["error", "always"],
"camelcase": [2, { "properties": "never" }],
"no-undef": 0,
"eqeqeq": 0,
"no-unused-expressions": ["error", { "allowShortCircuit": true }],
"no-unused-vars": 0,
"no-shadow": 0,
"no-console": 0,
"vars-on-top": 0,
"jsdoc/require-param-type": 0
}
}
{
"extends": ["plugin:@wordpress/eslint-plugin/recommended-with-formatting"],
"env": {
"browser": true,
"es6": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": ["error", "tab"],
"space-in-parens": ["error", "always"],
"camelcase": [2, { "properties": "never" }],
"no-undef": 0,
"eqeqeq": 0,
"no-unused-expressions": ["error", { "allowShortCircuit": true }],
"no-unused-vars": 0,
"no-shadow": 0,
"no-console": 0,
"vars-on-top": 0,
"jsdoc/require-param-type": 0
}
}
16 changes: 8 additions & 8 deletions .stylelintignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# By default, all `node_modules` are ignored.

build
dist
test
vendor
wordpress
*.js
# By default, all `node_modules` are ignored.

build
dist
test
vendor
wordpress
*.js
50 changes: 25 additions & 25 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
language: php

php:
- 7.1
- 7.0
- 5.6
- nightly

matrix:
fast_finish: true
allow_failures:
- php: nightly

sudo: false

before_script:
- composer install

script:
- ./vendor/bin/phpcs -d date.timezone=UTC

branches:
only:
- develop
- master
language: php

php:
- 7.1
- 7.0
- 5.6
- nightly

matrix:
fast_finish: true
allow_failures:
- php: nightly

sudo: false

before_script:
- composer install

script:
- ./vendor/bin/phpcs -d date.timezone=UTC

branches:
only:
- develop
- master
Loading

0 comments on commit 4cb278c

Please sign in to comment.