| @@ -0,0 +1,15 @@ | |||
| { | |||
| "presets": [ | |||
| [ | |||
| "@babel/preset-env", | |||
| { | |||
| "modules": false, | |||
| "targets": { | |||
| "browsers": ["> 1%", "last 2 versions", "ie >= 10"] | |||
| } | |||
| } | |||
| ], | |||
| "@babel/preset-stage-2" | |||
| ], | |||
| "plugins": ["@babel/plugin-transform-runtime"] | |||
| } | |||
| @@ -0,0 +1,2 @@ | |||
| > 1% | |||
| last 2 versions | |||
| @@ -0,0 +1,12 @@ | |||
| root = true | |||
| [*] | |||
| indent_style = space | |||
| indent_size = 2 | |||
| end_of_line = lf | |||
| charset = utf-8 | |||
| trim_trailing_whitespace = true | |||
| insert_final_newline = true | |||
| [*.md] | |||
| trim_trailing_whitespace = false | |||
| @@ -0,0 +1,4 @@ | |||
| /lib/ | |||
| /web/ | |||
| /pack/ | |||
| @@ -0,0 +1,30 @@ | |||
| { | |||
| "root": true, | |||
| "parser": "babel-eslint", | |||
| "parserOptions": { | |||
| "sourceType": "module" | |||
| }, | |||
| "env": { | |||
| "es6": true, | |||
| "node": true, | |||
| "browser": true | |||
| }, | |||
| "plugins": ["html", "prettier"], | |||
| "extends": ["eslint:recommended", "plugin:prettier/recommended"], | |||
| "globals": { | |||
| "Cesium": false, | |||
| "GSpace": false | |||
| }, | |||
| "rules": { | |||
| "global-require": 0, | |||
| "indent": 0, | |||
| "no-new": 0, | |||
| "camelcase": 0, | |||
| "padded-blocks": 0, | |||
| "no-unused-vars": 0, | |||
| "no-trailing-spaces": 0, | |||
| "no-mixed-spaces-and-tabs": 0, | |||
| "space-before-function-paren": [0, "always"], | |||
| "no-multiple-empty-lines": 0 | |||
| } | |||
| } | |||
| @@ -0,0 +1,15 @@ | |||
| node_modules/ | |||
| npm-debug.log* | |||
| yarn-debug.log* | |||
| yarn-error.log* | |||
| web/ | |||
| pack/ | |||
| dist/ | |||
| # Editor directories and files | |||
| .idea | |||
| .vscode | |||
| *.suo | |||
| *.ntvs* | |||
| *.njsproj | |||
| package-lock.json | |||
| .DS_Store | |||
| @@ -0,0 +1,6 @@ | |||
| { | |||
| "eslintIntegration": true, | |||
| "singleQuote": true, | |||
| "printWidth": 150, | |||
| "semi": false | |||
| } | |||
| @@ -0,0 +1,3 @@ | |||
| # DC-SDK | |||
| 数字城市基本框架 | |||
| @@ -0,0 +1,21 @@ | |||
| image: Visual Studio 2017 | |||
| version: '{build}' | |||
| environment: | |||
| matrix: | |||
| - nodejs_version: "8" | |||
| install: | |||
| # Get the latest stable version of Node.js | |||
| - ps: Install-Product node $env:nodejs_version | |||
| # install modules | |||
| - npm install | |||
| test_script: | |||
| - npm --silent run minifyRelease | |||
| - npm --silent run build-specs | |||
| - npm --silent run test -- --browsers IE --webgl-stub --release --suppressPassed | |||
| # Don't actually build. | |||
| build: off | |||
| @@ -0,0 +1,15 @@ | |||
| # http://editorconfig.org | |||
| root = true | |||
| [*] | |||
| indent_style = space | |||
| indent_size = 4 | |||
| charset = utf-8 | |||
| trim_trailing_whitespace = true | |||
| insert_final_newline = true | |||
| [*.md] | |||
| trim_trailing_whitespace = false | |||
| [package.json] | |||
| indent_size = 2 | |||
| @@ -0,0 +1,14 @@ | |||
| Apps/HelloWorld.html | |||
| Apps/Sandcastle/ThirdParty/** | |||
| Build/** | |||
| Documentation/** | |||
| Source/Shaders/** | |||
| Source/ThirdParty/** | |||
| Source/Workers/** | |||
| !Source/Workers/transferTypedArrayTest.js | |||
| ThirdParty/** | |||
| Tools/** | |||
| Apps/Sandcastle/jsHintOptions.js | |||
| Apps/Sandcastle/gallery/gallery-index.js | |||
| Source/Core/buildModuleUrl.js | |||
| Specs/spec-main.js | |||
| @@ -0,0 +1,22 @@ | |||
| { | |||
| "extends": "./Tools/eslint-config-cesium/browser.js", | |||
| "plugins": [ | |||
| "html" | |||
| ], | |||
| "rules": { | |||
| "no-unused-vars": ["error", {"vars": "all", "args": "none"}] | |||
| }, | |||
| "overrides": [ | |||
| { | |||
| "files": [ | |||
| "index.js", | |||
| "server.js", | |||
| "gulpfile.js", | |||
| "Source/Workers/transferTypedArrayTest.js" | |||
| ], | |||
| "parserOptions": { | |||
| "sourceType": "script" | |||
| } | |||
| } | |||
| ] | |||
| } | |||
| @@ -0,0 +1,15 @@ | |||
| releaseSchedule: | |||
| OmarShehata: 9/2/2019 | |||
| mramato: 10/1/2019 | |||
| hpinkos: 11/1/2019 | |||
| lilleyse: 12/1/2019 | |||
| kring: 1/6/2020 | |||
| lilleyse: 2/3/2020 | |||
| mramato: 3/2/2020 | |||
| greetings: | |||
| - Happy Friday everyone! | |||
| - Can you believe Friday is already here? | |||
| - I hope you all had awesome week! | |||
| - I skipped breakfast, so I hope Gary baked something good today... | |||
| - Good morning everyone! | |||
| @@ -0,0 +1,14 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <TileMap version="1.0.0" tilemapservice="http://tms.osgeo.org/1.0.0"> | |||
| <Title>NE2_HR_LC_SR_W_DR_recolored.tif</Title> | |||
| <Abstract></Abstract> | |||
| <SRS>EPSG:4326</SRS> | |||
| <BoundingBox miny="-90.00000000000000" minx="-180.00000000000000" maxy="90.00000000000000" maxx="180.00000000000000"/> | |||
| <Origin y="-90.00000000000000" x="-180.00000000000000"/> | |||
| <TileFormat width="256" height="256" mime-type="image/jpg" extension="jpg"/> | |||
| <TileSets profile="geodetic"> | |||
| <TileSet href="0" units-per-pixel="0.70312500000000" order="0"/> | |||
| <TileSet href="1" units-per-pixel="0.35156250000000" order="1"/> | |||
| <TileSet href="2" units-per-pixel="0.17578125000000" order="2"/> | |||
| </TileSets> | |||
| </TileMap> | |||