Skip to content

Commit

Permalink
Merge branch 'release/0.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
agershun committed Jul 13, 2015
2 parents ebc36ca + 278f6b9 commit f0fcd1d
Show file tree
Hide file tree
Showing 4,867 changed files with 8,430 additions and 1,673,889 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
29 changes: 29 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Save as .codeclimate.yml (note leading .) in project root directory
languages:
Ruby: false
JavaScript: true
PHP: false
Python: false
exclude_paths:
- "**/deps/**"
- "**/node_modules/**"
- "**/vendor/**"
- "**/**-min-**"
- "**/**-min.**"
- "**/**.min.**"
- "**/**jquery.?(ui|effects)-*.*.?(*).?(cs|j)s"
- "**/**jquery-*.*.?(*).?(cs|j)s"
- "**/prototype?(*).js"
- "**/**.test"
- "console/**"
- "dist/**"
- "examples/**"
- "meteor/**"
- "lib/**"
- "stuff/**"
- "test-sql/**"
- "test/**"
- "utils/**"
- "alasql.js"
- "gulpfile.js"
- "**/**_.js"
18 changes: 12 additions & 6 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
alacon.js text eol=lf
alaserver.js text eol=lf

alasql.js binary
alasql.js.map binary
alasql.min.js binary

*.xlsx binary
*.xls binary

alasql.js binary merge=ours
alasql.js.map binary merge=ours
alasql.min.js binary merge=ours

# absolute paths are ok, as are globs
#/**/postinst* text eol=lf

# paths that don't start with / are relative to the .gitattributes folder
#relative/path/*.txt text eol=lf


11 changes: 7 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Reults of tests

test/res*

# Results of tests
test/res*



node_modules/

100 changes: 100 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
{
// Settings
"passfail" : false, // Stop on first error.
"maxerr" : 10000, // Maximum error before stopping.
//"maxstatements" : 200, // Set lower as you evolve...


// Predefined globals whom JSHint will ignore.
"browser" : true, // Standard browser globals e.g. `window`, `document`.
"node" : true,
"wsh" : true, // Windows Scripting Host.
"jquery" : true,
"mocha" : true,
"node" : true,
"worker" : true,

"predef" : [ // Custom globals.
"alasql",
"yy",
"K",
"L",
"N",
"D",
"S",
"escapeq",
"NL",
"ID",
"P",
"n2u",
"LocalFileSystem",
"Meteor",
"Mongo",
"decartes",
"arrayUnion",
"Npm",
"returnTrue",
"modify",
"Tabletop",
"extend",
"distinctArray",
"arrayDiff",
"Query",
"queryfn",
"JSONtoString",
"processSelector",
"cloneDeep",
"hash"
],


// Development.
"debug" : false, // Allow debugger statements e.g. browser breakpoints.
"devel" : false, // Allow developments statements e.g. `console.log();`.
"evil" :true,

// ECMAScript 5.
"es5" : true, // Allow ECMAScript 5 syntax.
"strict" : false, // Require `use strict` pragma in every file.
"globalstrict" : false, // Allow global "use strict" (also enables 'strict').


// The Good Parts.
"asi" : true, // Tolerate Automatic Semicolon Insertion (no semicolons).
"laxbreak" : true, // Tolerate unsafe line breaks e.g. `return [\n] x` without semicolons.
"bitwise" : false, // Prohibit bitwise operators (&, |, ^, etc.).
"boss" : false, // Tolerate assignments inside if, for & while. Usually conditions & loops are for comparison, not assignments.
"curly" : true, // Require {} for every new block or scope.
"eqeqeq" : true, // Require triple equals i.e. `===`.
"eqnull" : false, // Tolerate use of `== null`.
"evil" : true, // Tolerate use of `eval`.
"expr" : false, // Tolerate `ExpressionStatement` as Programs.
"forin" : false, // Tolerate `for in` loops without `hasOwnPrototype`.
"immed" : true, // Require immediate invocations to be wrapped in parens e.g. `( function(){}() );`
"latedef" : true, // Prohipit variable use before definition.
"loopfunc" : true, // Allow functions to be defined within loops.
"noarg" : true, // Prohibit use of `arguments.caller` and `arguments.callee`.
"regexp" : false, // Prohibit `.` and `[^...]` in regular expressions.
"regexdash" : false, // Tolerate unescaped last dash i.e. `[-...]`.
"scripturl" : true, // Tolerate script-targeted URLs.
"shadow" : true, // Allows re-define variables later in code e.g. `var x=1; x=2;`.
"supernew" : false, // Tolerate `new function () { ... };` and `new Object;`.
"undef" : true, // Require all non-global variables be declared before they are used.
"unused" : true, //This option warns when you define and never use your variables. It is very useful for general code cleanup, especially when used in addition to undef.



// Personal styling preferences.
"newcap" : false, // Require capitalization of all constructor functions e.g. `new F()`.
"noempty" : true, // Prohibit use of empty blocks.
"nonew" : true, // Prohibit use of constructors for side-effects.
"nomen" : true, // Prohibit use of initial or trailing underbars in names.
"onevar" : false, // Allow only one `var` statement per function.
"plusplus" : false, // Prohibit use of `++` & `--`.
"sub" : false, // Tolerate all forms of subscript notation besides dot notation e.g. `dict['key']` instead of `dict.key`.
"trailing" : true, // Prohibit trailing whitespaces.
"white" : false, // Check against strict whitespace and indentation rules.
"indent" : 1, // Specify indentation spacing
"lastsemic" : true, // Suppresses warnings about missing semicolons when the semicolon is omitted for the last statement in a one-line block
"multistr" : true
}
15 changes: 15 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
console/
examples/
lib/
partners/
test/
src/
*.md
.bithoundrc
.codeclimate.yml
.gitattributes
.gitignore
.jshintrc
bower.json
gulpfile.js
inch.json
13 changes: 8 additions & 5 deletions .../vinyl-fs/node_modules/mkdirp/.travis.yml → .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
- "iojs"
before_install:
- npm install -g npm@~1.4.6
- "node"
- "0.12"
- "0.11"
- "0.10"
- "0.8"
- "0.6"
- "0.5"
- "0.4"
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

### Version 0.2.1 "Rodos" (13.07.2015 - ...)
*

## Version 0.2.0 "Athens" (13.07.2015)
The purpose of this release were hard work on:
a) documentation
b) resolving bugs
c) document and refactoring code

### 0.1.11 "San Remo" (03.06.2015 - 13.07.2015)
* Code partially refactored with help of bitHound
* New directory 'partners' added
* Added file for codecomplexity.com
* Released as 0.2.0

### 0.1.10 "Genova" (31.05.2015 - 02.06.2015)
* CALL procedure() statement
* bitHound advices
Expand Down Expand Up @@ -572,7 +587,7 @@
* Added /test/main.html mocha browser tests
* Added PERFORMANCE.md and perf.html tests
* StringValue.toJavaScript()
* StringValue.toJS()
* Added callback to Database.exec
* Sieve of Eratosthenes example
* Remove generation of recs after select in case of group by (for memory optimization)
Expand Down
8 changes: 7 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The MIT License (MIT)

Copyright (c) 2014-2015 Andrey Gershun ([email protected])
Copyright (c) 2014-2015 Andrey Gershun ([email protected]) &
Mathias Rangel Wulff ([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 All @@ -20,3 +21,8 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

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

The MIT license on this repo covers all contents of the repo, but does not
supercede the existing licenses for products used for this work, including the
Chinook Database (covered by the Microsoft Public License) and other products.
Loading

0 comments on commit f0fcd1d

Please sign in to comment.