This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="https://code.highcharts.com/highcharts.js"></script> | |
| <script src="https://code.highcharts.com/modules/exporting.js"></script> | |
| <script src="https://code.highcharts.com/modules/export-data.js"></script> | |
| <div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div> | |
| Highcharts.chart('container', { | |
| chart: { | |
| type: 'column' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <aura:component implements="force:hasRecordId,flexipage:availableForRecordHome"> | |
| <aura:attribute name="record" | |
| type="Object" | |
| description="The record object to be displayed"/> | |
| <aura:attribute name="accountRecord" | |
| type="Object" | |
| description="A simplified view record object to be displayed"/> | |
| <aura:attribute name="recordSaveError" | |
| type="String" | |
| description="An error message bound to force:recordData"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: 2.1 | |
| orbs: | |
| aws-s3: circleci/aws-s3@1.0.4 | |
| jobs: | |
| build: | |
| docker: | |
| - image: circleci/python:2.7-node | |
| environment: | |
| AWS_REGION: ap-southeast-2 | |
| steps: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: 2.1 | |
| orbs: | |
| aws-s3: circleci/aws-s3@1.0.4 | |
| jobs: | |
| build: | |
| docker: | |
| - image: circleci/python:2.7-node | |
| environment: | |
| AWS_REGION: ap-southeast-2 | |
| steps: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Page Title</title> | |
| </head> | |
| <style> | |
| pre{ | |
| background: #001628; | |
| hyphens: none; | |
| position: relative; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var firstname = "nikhil1" | |
| var lastname = "karkra" | |
| var firstname = "nikhil" | |
| document.getElementById('demo').innerHTML = `Hey i am ${firstname} ${lastname}, My name coming from Javascript` | |
| var a = NaN; | |
| if (a === NaN) { // Noncompliant; always false | |
| console.log("a is not a number"); // this is dead code |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # required metdata | |
| sonar.projectKey=sonar-lint-demo | |
| sonar.projectVersion=1.0 | |
| sonar.sourceEncoding=UTF-8 | |
| # sonar.language=js | |
| # sonar.eslint.eslintconfigpath=app/eslintrc.json | |
| # path to source directories | |
| sonar.sources=app |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @nice-blue: #5B83AD; | |
| #header { | |
| color: @nice-blue; | |
| margin: 2em; | |
| } | |
| #header { | |
| color:#000; | |
| margin: 2em; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>sosnar lint demo</title> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link rel="stylesheet/less" type="text/css" href="./style.less" /> | |
| </head> | |
| <body> | |
| <div> |