Added tools config.

This commit is contained in:
Marek Lewandowski 2020-04-09 23:42:00 +02:00
parent c66b149093
commit 3a5ca03970
4 changed files with 49 additions and 0 deletions

16
.editorconfig Normal file
View File

@ -0,0 +1,16 @@
# Configurations to normalize the IDE behavior.
# http://editorconfig.org/
root = true
[*]
indent_style = tab
tab_width = 4
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
[package.json]
indent_style = space
tab_width = 2

12
.eslintrc.js Normal file
View File

@ -0,0 +1,12 @@
/**
* @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/* eslint-env node */
'use strict';
module.exports = {
extends: 'ckeditor5'
};

18
.gitattributes vendored Normal file
View File

@ -0,0 +1,18 @@
* text=auto
*.htaccess eol=lf
*.cgi eol=lf
*.sh eol=lf
*.css text
*.htm text
*.html text
*.js text
*.json text
*.php text
*.txt text
*.md text
*.png -text
*.gif -text
*.jpg -text

3
.stylelintrc Normal file
View File

@ -0,0 +1,3 @@
{
"extends": "stylelint-config-ckeditor5"
}