Skip to content

Commit

Permalink
Feature/new yarn schema (#11)
Browse files Browse the repository at this point in the history
* firt commit with new structure

* basic files back

* some spaces removed

* some spaces removed

* some files updated

* start fixed

* yarn example buld done

* bump release

* test fixed

* eslint added for codacy

* all .js files indentated

* test.js fixed

* test.js fixed
  • Loading branch information
pablorsk authored Dec 18, 2017
1 parent 404df51 commit df3b8a3
Show file tree
Hide file tree
Showing 96 changed files with 5,627 additions and 16,972 deletions.
22 changes: 16 additions & 6 deletions .angular-cli.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
},
"apps": [
{
"root": "src",
"outDir": "dist",
"root": "demo",
"outDir": "demo-dist",
"assets": [
"assets",
"favicon.ico"
Expand All @@ -17,7 +17,7 @@
"test": "test.ts",
"tsconfig": "tsconfig.app.json",
"testTsconfig": "tsconfig.spec.json",
"prefix": "",
"prefix": "bc",
"styles": [],
"scripts": [],
"environmentSource": "environments/environment.ts",
Expand All @@ -34,8 +34,13 @@
},
"lint": [
{
"project": "tsconfig.json",
"exclude": "**/node_modules/**"
"project": "demo/tsconfig.app.json"
},
{
"project": "demo/tsconfig.spec.json"
},
{
"project": "e2e/tsconfig.e2e.json"
}
],
"test": {
Expand All @@ -45,6 +50,11 @@
},
"defaults": {
"styleExt": "css",
"component": {}
"component": {
"inlineStyle": true,
"inlineTemplate": true,
"flat": true,
"spec": false
}
}
}
12 changes: 8 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf

# 2 space indentation
[**.*]
charset = utf-8
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf

[*.md]
max_line_length = off
trim_trailing_whitespace = false
76 changes: 38 additions & 38 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
{
"env": {
"es6": true,
"browser": true,
"jasmine": true
},
"rules": {
"block-scoped-var": 2,
"no-eval": 2,
"no-eq-null": 2,
"no-case-declarations": 2,
"no-alert": 1,
"no-multi-spaces": 1,
"no-multi-str": 1,
"no-undef": 0,
"indent": ["error", 4, { "SwitchCase": 1 }],
"no-unused-vars": 1,
"quotes": [2, "single"],
"env": {
"es6": true,
"browser": true,
"jasmine": true
},
"rules": {
"block-scoped-var": 2,
"no-eval": 2,
"no-eq-null": 2,
"no-case-declarations": 2,
"no-alert": 1,
"no-multi-spaces": 1,
"no-multi-str": 1,
"no-undef": 0,
"indent": ["error", 4, { "SwitchCase": 1 }],
"no-unused-vars": 1,
"quotes": [2, "single"],

"angular/on-watch": 0,
"angular/on-watch": 0,

"strict": "off",
"strict": "off",

"no-shadow-restricted-names": 2,
"no-shadow-restricted-names": 2,

"array-bracket-spacing": 1,
"camelcase": [1, {properties: "never"}],
"comma-style": 1,
"comma-spacing": 1
},
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"globals": {
"require": true,
"angular": true,
"module": true,
"inject": true
"array-bracket-spacing": 1,
"camelcase": [1, {properties: "never"}],
"comma-style": 1,
"comma-spacing": 1
},
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"globals": {
"require": true,
"angular": true,
"module": true,
"inject": true
}
}
}
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/compiled
/build
/dist
/demo-dist
/release

# See http://help.github.com/ignore-files/ for more about ignoring files.
Expand Down Expand Up @@ -34,6 +35,7 @@
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

Expand Down
1 change: 1 addition & 0 deletions .nyc_output/ad05bf248921aa47c6277037591bb3b5.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .nyc_output/b56b8552af23ccdbfd5820b69e5cea00.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016 Reyesoft <[email protected]>
Copyright (c) 2017 Reyesoft <[email protected]>

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
Loading

0 comments on commit df3b8a3

Please sign in to comment.